how to add numbers on top of bar graph in jupyter notebook

29

how to add numbers on top of bar graph in jupyter notebook -

for i, v in enumerate(y):
    ax.text(v + 3, i + .25, str(v), color='blue', fontweight='bold')

Comments

Submit
0 Comments